home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / Mac_F2C_1.3.2.sit / Mac F2C 1.3.2 / Mac F2C Libraries / libF77 Sources / r_cos.c < prev    next >
C/C++ Source or Header  |  1995-01-28  |  162b  |  14 lines

  1. #include "f2c.h"
  2.  
  3. #ifdef KR_headers
  4. double cos();
  5. double r_cos(x) real *x;
  6. #else
  7. #undef abs
  8. #include "math.h"
  9. double r_cos(real *x)
  10. #endif
  11. {
  12. return( cos(*x) );
  13. }
  14.